fixed description and small bugs

Judy Ngai 9 年之前
父节点
当前提交
3212336d61
共有 1 个文件被更改,包括 12 次插入6 次删除
  1. 12 6
      app/models/agents/twitter_user_agent.rb

+ 12 - 6
app/models/agents/twitter_user_agent.rb

@@ -5,15 +5,22 @@ module Agents
5 5
     cannot_receive_events!
6 6
 
7 7
     description <<-MD
8
-      The Twitter User Agent either follows the timeline of a specific Twitter user or follow your own home timeline including both your tweets and tweets from people whom you are following.
8
+      The Twitter User Agent either follows the timeline of a specific Twitter user or follows your own home timeline including both your tweets and tweets from people whom you are following.
9
+      
9 10
       #{twitter_dependencies_missing if dependencies_missing?}
11
+
10 12
       To be able to use this Agent you need to authenticate with Twitter in the [Services](/services) section first.
11
-      For the first option, you must provide the `username` of the Twitter user to monitor.
12
-      For the second option, you must set `choose_home_time_line` to `true`. 
13
+
14
+      To follow a Twitter user set `choose_home_time_line` to `false` and provide a `username`.
15
+
16
+      To follow your own home timeline set `choose_home_time_line` to `true`.
17
+
13 18
       Set `include_retweets` to `false` to not include retweets (default: `true`)
14 19
       
15 20
       Set `exclude_replies` to `true` to exclude replies (default: `false`)
21
+
16 22
       Set `expected_update_period_in_days` to the maximum amount of time that you'd expect to pass between Events being created by this Agent.
23
+
17 24
       Set `starting_at` to the date/time (eg. `Mon Jun 02 00:38:12 +0000 2014`) you want to start receiving tweets from (default: agent's `created_at`)
18 25
     MD
19 26
 
@@ -52,14 +59,13 @@ module Agents
52 59
         'include_retweets' => 'true',
53 60
         'exclude_replies' => 'false',
54 61
         'expected_update_period_in_days' => '2',
55
-        'choose_home_time_line' => 'true'
62
+        'choose_home_time_line' => 'false'
56 63
       }
57 64
     end
58 65
 
59 66
     def validate_options
60 67
       errors.add(:base, "expected_update_period_in_days is required") unless options['expected_update_period_in_days'].present?
61
-      
62
-      errors.add(:base, "username is required") unless options['choose_home_time_line'] == 'true'
68
+      errors.add(:base, "username is required") if options['username'].blank? && !boolify(options['choose_home_time_line'])
63 69
 
64 70
       if options[:include_retweets].present? && !%w[true false].include?(options[:include_retweets])
65 71
         errors.add(:base, "include_retweets must be a boolean value string (true/false)")